home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 2500 / BCINSTAL.BAT < prev    next >
DOS Batch File  |  1992-01-13  |  2KB  |  71 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto usage
  4. %1
  5. cd\
  6. echo Creating BCLASS directory. UNABLE TO CREATE DIRECTORY message indicates
  7. echo that the directory already exists.....
  8. echo ------
  9. mkdir bclass
  10. copy a:bc.bat %1\
  11. echo Copied BC.BAT to root directory.....
  12. echo ------
  13. cd %1\bclass
  14.  
  15. copy a:*.ran %1\bclass
  16. copy a:*.map %1\bclass
  17. copy a:*.pic %1\bclass
  18. copy a:*.bat %1\bclass
  19. copy a:orderfrm.txt %1\bclass
  20. copy a:Q&A.txt %1\bclass
  21. copy a:map.trn %1\bclass
  22. copy a:*.doc %1\bclass
  23. copy a:bassclas.exe %1\bclass
  24. copy a:bcdoc.exe %1\bclass
  25. if exist %1\bclass\bigfish.txt goto ask
  26. copy a:bigfish.txt %1\bclass
  27. copy a:bigstr.txt %1\bclass
  28. goto movealong
  29. :ask
  30. echo NOTE ********
  31. echo A file of BIG FISH records has been found in the BCLASS directory.
  32. echo Continuing this installation will overwrite these records and the
  33. echo BIG STRINGER records. Press CTRL-BREAK to cancel the installation
  34. echo NOW so that your previous records will be preserved. Press any other
  35. echo key to continue with the installation which will establish new
  36. echo minimum records to beat.
  37. echo ------
  38. echo ------
  39.  
  40. pause
  41.  
  42. echo Replacing old BIG FISH and BIG STRINGER records with default values...
  43. copy a:bigfish.txt %1\bclass
  44. copy a:bigstr.txt %1\bclass
  45. goto movealong
  46.  
  47. :movealong
  48. cls  
  49. echo -------------------------------------------------------------------
  50. echo Bass Class installation is completed. To run the program
  51. echo type BASSCLAS then press the ENTER key.
  52. echo -------------------------------------------------------------------
  53. echo If your Bass Class disk contains a README.DOC file, be sure to read it.
  54. echo It may contain last minute information about Bass Class.
  55. echo --
  56. echo To view or print the Bass Class manual, type BCDOC then press ENTER.
  57. echo --
  58. goto end
  59.  
  60. :usage
  61. echo -- You must specify a disk drive where Bass Class is to be installed:
  62. echo --
  63. echo -- EXAMPLES:            a:bcinstal c: 
  64. echo --                          -OR-
  65. echo --                      a:bcinstal d:
  66. echo --
  67. echo -- Notice the c: and the d: at the end of the command. These specify
  68. echo -- where you want to install Bass Class.
  69. goto end
  70.  
  71. :end